home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / DELPHI / LEDIT108.ZIP / LEMFC / LEMFC_1F.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-06-25  |  963 b   |  41 lines

  1. class CMainFrame : public CFrameWnd
  2. {
  3. protected: // create from serialization only
  4.     CMainFrame();
  5.     DECLARE_DYNCREATE(CMainFrame)
  6.  
  7. // Attributes
  8. public:
  9.  
  10. // Operations
  11. public:
  12.  
  13. // Overrides
  14.     // ClassWizard generated virtual function overrides
  15.     //{{AFX_VIRTUAL(CMainFrame)
  16.     //}}AFX_VIRTUAL
  17.  
  18. // Implementation
  19. public:
  20.     virtual ~CMainFrame();
  21. #ifdef _DEBUG
  22.     virtual void AssertValid() const;
  23.     virtual void Dump(CDumpContext& dc) const;
  24. #endif
  25.  
  26. protected:  // control bar embedded members
  27.     CStatusBar  m_wndStatusBar;
  28.     CToolBar    m_wndToolBar;
  29.  
  30. // Generated message map functions
  31. protected:
  32.     //{{AFX_MSG(CMainFrame)
  33.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  34.         // NOTE - the ClassWizard will add and remove member functions here.
  35.         //    DO NOT EDIT what you see in these blocks of generated code!
  36.     //}}AFX_MSG
  37.     DECLARE_MESSAGE_MAP()
  38. };
  39.  
  40. /////////////////////////////////////////////////////////////////////////////
  41.